home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / c1.zip / UNLINK.C < prev    next >
Text File  |  1987-06-18  |  256b  |  13 lines

  1.  
  2. #include "io.h"
  3.  
  4. unlink(name)
  5. char *name;
  6. {
  7.         struct fcb delfcb;
  8.  
  9.         fcbinit(name,&delfcb);
  10.         return bdos(DELFIL,&delfcb);
  11. }
  12.  
  13.